Ilya Kazakevich

Results 16 comments of Ilya Kazakevich

Faced same problem with httpd--fastcgi--uwsgi(flask). Django survives it somehow, but not Flask. ``app.url_map.strict_slashes = False`` fixes issue for Flask. Since browser explictily sends "/", should not httpd(8) set PATH_INFO="/" for...

michelts, thank you! I believe **@before.each_step** should also work with steps in outline. It does not work now (called only for the first step)

Nose bug https://github.com/nose-devs/nose/issues/1065

I want one of .css files to be removed from the bundle. Here is project to reproduce. Run it. It will create ``main.css`` with content of ``bad_css.css``. Then, try to...

@evilebottnawi I am sorry, could you please give me example? I've tried to use ``null-loader`` for ``bad_css.css`` but it doesn't work.

``null-loader`` can't help here because any loader is ignored. Accroding to error: ``` ERROR in ./src/foo.css Module build failed (from ./node_modules/mini-css-extract-plugin/dist/loader.js): Error: Cannot find module '-!../node_modules/css-loader/dist/cjs.js!./bar.css' ``` css-loaded is used...

Even disabling this module for ``css-loader`` excplicitly doesn't work ``` rules: [ { test: /good_css\.css$/, use: {loader: MiniCssExtractPlugin.loader} }, { test: /bad_css\.css$/, use: {loader: 'null-loader'} }, { test: /good_css\.css$/, exclude:...

Thank you! Here is workaround: use replacement to replace ``bad_css`` with ``empty.css`` ``` const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const webpack = require('webpack'); const pluginToIgnore = /bad_css\.css$/; module.exports = { plugins: [...

Hello. Since 2018.1 PyCharm does not track all folders, but filters them by pattern instead: https://youtrack.jetbrains.com/issue/PY-27260 Please check if this issue is still actual in 2018.1

@python-force thank you for 2.0 support. Are you going to send pull request?